home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / ab20 / unarced / languages / c-manual / hintsandtips / example3.c < prev    next >
Text File  |  1995-03-17  |  380b  |  16 lines

  1. /* Example 3 */
  2. /* This program will not open any console window if run from */
  3. /* workbench. The disadvantage is of course that you can not */
  4. /* use any "console functions" such as printf().             */
  5.  
  6. void _main();
  7.  
  8. void _main() /* Note the special character in front of main()! */
  9. {
  10.   int loop;
  11.  
  12.   /* Wait for a while: */
  13.   for( loop = 0; loop < 500000; loop++ )
  14.     ;
  15. }
  16.